home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bash-completion.postinst < prev    next >
Text File  |  2009-10-05  |  400b  |  26 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     configure)
  7.     # remove ucf configury
  8.     if which ucf >/dev/null; then
  9.         ucf --purge /etc/bash_completion
  10.     fi
  11.     if which ucfr >/dev/null; then
  12.         ucfr --purge bash-completion /etc/bash_completion
  13.     fi
  14.     ;;
  15.     abort-upgrade|abort-remove|abort-deconfigure)
  16.     ;;
  17.     *)
  18.         echo "postinst called with unknown argument \`$1'" >&2
  19.         exit 1
  20.     ;;
  21. esac
  22.  
  23.  
  24.  
  25. exit 0
  26.